home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_10_05 / 1005012a < prev    next >
Text File  |  1992-03-04  |  137b  |  6 lines

  1.  
  2. #define atoi(s)    (int)_Stoul(s, 0, 10)
  3. #define atol(s)    (long)_Stoul(s, 0, 10)
  4. #define strtoul(s, end, base)   _Stoul(s, end, base)
  5.  
  6.